home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / viewcvs_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  81 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. #  Ref: office <office@office.ac>
  5. #
  6. #  This script is released under the GNU GPLv2
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(14823);
  12.  if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"6458");
  13.  script_bugtraq_id(4818);
  14.  script_cve_id("CAN-2002-0771");
  15.  name["english"] = "ViewCVS XSS";
  16.  
  17.  script_name(english:name["english"]);
  18.  script_version ("$Revision: 1.5 $"); 
  19.  desc["english"] = "
  20. The remote host seems to be running ViewCVS, an open source CGI written in 
  21. python designed to access CVS directories using a web interface.
  22.  
  23. The remote version of this software is vulnerable to many cross-site scripting 
  24. flaws though the script 'viewcvs'.
  25.  
  26. Using a specially crafted URL, an attacker can cause arbitrary code execution 
  27. for third party users, thus resulting in a loss of integrity of their system.
  28.  
  29. Solution : Update to the latest version of this software
  30. See also: http://viewcvs.sourceforge.net/
  31. Risk factor : Medium";
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Checks for the version of ViewCVS";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_ATTACK);
  40.  
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  43.  
  44.  family["english"] = "CGI abuses : XSS";
  45.  family["francais"] = "Abus de CGI";
  46.  script_family(english:family["english"], francais:family["francais"]);
  47.  script_dependencie("cross_site_scripting.nasl");
  48.  script_require_ports("Services/www", 80);
  49.  exit(0);
  50. }
  51.  
  52. #
  53. # The script code starts here
  54. #
  55.  
  56. include("http_func.inc");
  57. include("http_keepalive.inc");
  58.  
  59. port = get_http_port(default:80);
  60. if(!get_port_state(port))exit(0);
  61. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  62.  
  63. function check(url)
  64. {
  65.   req = http_get(item:string(url, "/viewcvs.cgi/?cvsroot=<script>foo</script>"), port:port);
  66.   r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  67.   if ( r == NULL ) exit(0);
  68.  
  69.   if ('The CVS root "<script>foo</script>" is unknown' >< r)
  70.   {
  71.     security_warning(port);
  72.     exit(0);
  73.   }
  74. }
  75.  
  76.  
  77. foreach dir (cgi_dirs())
  78. {
  79.  check(url:dir);
  80. }
  81.